home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_sol_sayline.cog < prev    next >
Text File  |  1999-11-15  |  838b  |  46 lines

  1. # Jones 3D Cog Script
  2. #
  3. # SOL_SayLine.cog
  4. #
  5. #
  6. # [TRM]
  7. #
  8. # (C) 1999 LucasArts Entertainment Co. All Rights Reserved
  9. # ========================================================================================
  10.  
  11. symbols
  12.  
  13.     message     entered
  14.     
  15.     thing       player      local
  16.  
  17.     sector      sec_SayIt
  18.     
  19.     sound       snd_Line
  20.  
  21.     int         done=0          local
  22.  
  23. end
  24.  
  25. # ========================================================================================
  26.  
  27. code
  28.  
  29. entered:
  30.  
  31.     player = GetLocalPlayerThing();
  32.     Sleep(0.1);
  33.     
  34.     if((GetSenderRef() == sec_SayIt) && (done == 0))
  35.     {
  36.         done = 1;
  37.         PlayVoice(player, snd_Line, 1.0, 0);
  38.     }
  39.         
  40.     return;
  41.  
  42. # ========================================================================================
  43.  
  44. end
  45.  
  46.